home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / System / ReqToolsLib / Source / reqtools / rtfreefilelist.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-02  |  1.2 KB  |  71 lines

  1.  
  2. /*
  3.     (C) 1999 AROS - The Amiga Research OS
  4.     $Id: rtfreefilelist.c,v 1.5 2000/12/15 20:43:35 stegerg Exp $
  5.  
  6.     Desc:
  7.     Lang: English
  8. */
  9.  
  10. #include <exec/types.h>
  11. #include <proto/exec.h>
  12. #include <proto/reqtools.h>
  13. #include <proto/intuition.h>
  14. #include <exec/libraries.h>
  15. #include <exec/memory.h>
  16. #include <aros/libcall.h>
  17. #include "reqtools_intern.h"
  18.  
  19. /*****************************************************************************
  20.  
  21.     NAME */
  22.  
  23.     AROS_LH1(VOID, rtFreeFileList,
  24.  
  25. /*  SYNOPSIS */
  26.  
  27.     AROS_LHA(struct rtFileList *, selfile, A0),
  28.  
  29. /*  LOCATION */
  30.  
  31.     struct ReqToolsBase *, ReqToolsBase, 10, ReqTools)
  32.  
  33. /*  FUNCTION
  34.  
  35.     Frees a filelist returned by rtFileRequest() when the FREQF_MULTISELECT
  36.     flag was set.  Call this after you have scanned the filelist and you no
  37.     longer need it.
  38.  
  39.     INPUTS
  40.  
  41.     filelist  --  pointer to rtFileList structure, returned by rtFileRequest();
  42.                       may be NULL.
  43.  
  44.     RESULT
  45.     none
  46.  
  47.     NOTES
  48.  
  49.     EXAMPLE
  50.  
  51.     BUGS
  52.     none known
  53.  
  54.     SEE ALSO
  55.  
  56.         rtFileRequest()
  57.  
  58.     INTERNALS
  59.  
  60.     HISTORY
  61.  
  62. ******************************************************************************/
  63. {
  64.     AROS_LIBFUNC_INIT
  65.  
  66.     FreeFileList(selfile);
  67.     
  68.     AROS_LIBFUNC_EXIT
  69.     
  70. } /* rtFreeFileList */
  71.